home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / help / 5_programming / save < prev    next >
Encoding:
Text File  |  2002-10-28  |  1.4 KB  |  39 lines

  1. Synopsis:
  2.    save [<options>] [<filename>]
  3.  
  4. Description:
  5.    SAVE is used to record the client's current configuration to an
  6.    external file; if none is specified, the ~/.ircrc is used, or the name
  7.    of the file specified on the command line with the -l switch.  The
  8.    command does not save information such as nickname or user mode, or
  9.    any setting that requires server interaction (except NOTIFY).
  10.  
  11.    The client by default will save all types of configurable settings to
  12.    the external file.  It can be set, however, to only save certain
  13.    types of settings.  The options may be abbreviated unambiguously.
  14.  
  15. Options:
  16.    -alias     saves any aliases or alias structures present
  17.    -assign    saves any variables or variable structures present
  18.    -bind      saves any added key bindings
  19.    -digraph   saves any changes to the internal digraph table
  20.    -notify    saves the current NOTIFY list
  21.    -on        saves all defined hooks
  22.    -set       saves any modified SET variables
  23.    -all       all of the above (default)
  24.  
  25. Examples:
  26.    To save everything to a backup .ircrc:
  27.       /save .ircrc.safe
  28.  
  29.    To only save internal variables and key bindings:
  30.       /save -b -s
  31.  
  32. See Also:
  33.    Command_Line_Args(7); load(5); stub(5)
  34.  
  35. Other Notes:
  36.    This command will clobber any existing file it saves to.  Care should be
  37.    taken to avoid unintentionally wiping an .ircrc that took days to write.
  38.  
  39.